home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Developer Helper 1: Phil & Dave's Excellent CD
/
Excellent CD HFS.raw
/
Moof
/
Goodies
/
HyperCard Goodies
/
Serial Toolkit
/
Source Code
/
SPortVersion.p
< prev
next >
Wrap
Text File
|
1988-11-18
|
1KB
|
59 lines
(*
SPortVersion() -- Return the current version as a list consisting of the
version and the date of that version.
To compile and link this file using Macintosh Programmer's Workshop,
pascal -w SPortVersion.p
link -m ENTRYPOINT -o HyperCommands -rt XFCN=7035 -sn Main=SPortVersion ∂
SPortVersion.p.o
© Copyright 1987,88 by Apple Computer, Inc.
Initial coding 9/87 by Harry R. Chesley.
*)
{$R-}
{$S SPortVersion } { Segment name must be the same as the command name. }
unit DummyUnit;
interface
uses MemTypes, QuickDraw, OSIntf, HyperXCmd;
procedure EntryPoint(paramPtr: XCmdPtr);
implementation
type
Str31 = String[31];
procedure SPortVersion(paramPtr: XCmdPtr); forward;
procedure EntryPoint(paramPtr: XCmdPtr);
begin
SPortVersion(paramPtr);
end;
procedure SPortVersion(paramPtr: XCmdPtr);
{$I XCmdGlue.inc}
procedure Fail(errMsg: Str255); { set theResult and quit }
begin
paramPtr^.returnValue := PasToZero(errMsg);
exit(SPortVersion);
end;
begin
if paramPtr^.paramCount <> 0 then Fail('parameter count is not 0');
paramPtr^.returnValue := PasToZero('2.5b1,4/18/88')
end;
end.